home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CU Amiga Super CD-ROM 14
/
CU Amiga Magazine's Super CD-ROM 14 (1997)(EMAP Images)(GB)(Track 1 of 3)[!][issue 1997-09].iso
/
CUCD
/
Online
/
News
/
Thor
/
rexx
/
examples
/
ShowText_ex.thor
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS
UTF-8
Wrap
Text File
|
1996-11-11
|
355 b
|
27 lines
/*
*
* ShowText_ex.thor - example program for the SHOWTEXT function
*
*/
options results
thorport = address()
REQUESTFILE title '"Select text file to view:"' id '"s:"' fullpath
if(rc ~= 0) then
do
if(rc = 30) then say THOR.LASTERROR
exit
end
filename = result
SHOWTEXT file '"'filename'"' CMT
if(rc = 30) then
do
say THOR.LASTERROR
end
exit